home *** CD-ROM | disk | FTP | other *** search
- Object.JavaMasterClass = function()
- {
- this.init();
- };
- Object.JavaMasterClass.prototype = new MovieClip();
- Object.JavaMasterClass["extends"](MovieClip);
- Object.JavaMasterClass.prototype.init = function()
- {
- s = "@";
- this.show();
- };
- Object.JavaMasterClass.prototype.show = function()
- {
- fscommand("appletDo",1 + s + this.id);
- };
- Object.JavaMasterClass.prototype.hide = function()
- {
- fscommand("appletDo",0 + s + this.id);
- };
- Object.JavaMasterClass.prototype.onUnload = function()
- {
- this.hide();
- };
- Object.registerClass("JavaMaster",Object.JavaMasterClass);
-